home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_shw_sluicevoice.cog < prev    next >
Text File  |  1999-11-15  |  1KB  |  59 lines

  1. # Jones 3D Cog Script
  2. #
  3. # SHW_Div2Voice.cog
  4. #
  5. # Say line control for the Div Room2 in SHW
  6. #
  7. # [CMG]
  8. #
  9. # (C) 1998 LucasArts Entertainment Co. All Rights Reserved
  10. # ========================================================================================
  11.  
  12. symbols        
  13.     
  14.     message     startup
  15.     message     touched
  16.     
  17.     thing       player      local
  18.           
  19.     thing     gatedev     
  20.     
  21.     
  22.     sound       inhmm=Sw01j05.wav      local       # a sluice gate...
  23.     
  24.     int touched=0       local
  25.     
  26.     
  27.     
  28.     
  29.     
  30.  
  31. end
  32.  
  33. # ========================================================================================
  34.  
  35. code
  36.  
  37. startup:
  38.  
  39.     player = GetLocalPlayerThing();
  40.     return;
  41.     
  42. # ========================================================================================
  43.  
  44. touched:
  45.  
  46.     if (touched == 1) return;    
  47.     if ((GetSenderRef() == gatedev) && (GetSourceRef() == player))
  48.         {    
  49.             touched = 1;
  50.             PlayVoice(player, inhmm, 1.0, 1);
  51.            
  52.         }    
  53.     return;
  54.  
  55. # ========================================================================================
  56.     
  57. end
  58.  
  59.